{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Measure without a Loop\n", "\n", "If you have a parameter that returns a whole array at once, often you want to measure it directly into a DataSet.\n", "\n", "This shows how that works in QCoDeS" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2020-03-24 18:45:32,769 ¦ qcodes.instrument.base ¦ WARNING ¦ base ¦ snapshot_base ¦ 214 ¦ [dac2_ChanA(DummyChannel)] Snapshot: Could not update parameter: dummy_sp_axis\n", "2020-03-24 18:45:32,798 ¦ qcodes.instrument.base ¦ WARNING ¦ base ¦ snapshot_base ¦ 214 ¦ [dac2_ChanB(DummyChannel)] Snapshot: Could not update parameter: dummy_sp_axis\n", "2020-03-24 18:45:32,804 ¦ qcodes.instrument.base ¦ WARNING ¦ base ¦ snapshot_base ¦ 214 ¦ [dac2_ChanC(DummyChannel)] Snapshot: Could not update parameter: dummy_sp_axis\n", "2020-03-24 18:45:32,807 ¦ qcodes.instrument.base ¦ WARNING ¦ base ¦ snapshot_base ¦ 214 ¦ [dac2_ChanD(DummyChannel)] Snapshot: Could not update parameter: dummy_sp_axis\n", "2020-03-24 18:45:32,819 ¦ qcodes.instrument.base ¦ WARNING ¦ base ¦ snapshot_base ¦ 214 ¦ [dac2_ChanE(DummyChannel)] Snapshot: Could not update parameter: dummy_sp_axis\n", "2020-03-24 18:45:32,838 ¦ qcodes.instrument.base ¦ WARNING ¦ base ¦ snapshot_base ¦ 214 ¦ [dac2_ChanF(DummyChannel)] Snapshot: Could not update parameter: dummy_sp_axis\n" ] } ], "source": [ "%matplotlib nbagg\n", "import numpy as np\n", "\n", "# import dummy driver for the tutorial\n", "from qcodes.instrument_drivers.mock_instruments import (\n", " DummyChannelInstrument,\n", " DummyInstrument,\n", ")\n", "from qcodes.station import Station\n", "\n", "from qcodes_loop.actions import Task\n", "from qcodes_loop.measure import Measure\n", "\n", "dac1 = DummyInstrument(name=\"dac\")\n", "dac2 = DummyChannelInstrument(name=\"dac2\")\n", "\n", "\n", "# the default dummy instrument returns always a constant value, in the following line we make it random \n", "# just for the looks 💅\n", "dac2.A.dummy_array_parameter.get = lambda: np.random.randint(0, 100, size=5)\n", "\n", "# The station is a container for all instruments that makes it easy \n", "# to log meta-data\n", "station = Station(dac1, dac2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Instantiates all the instruments needed for the demo\n", "\n", "For this tutorial we're going to use the regular parameters (c0, c1, c2, vsd) and ArrayGetter, which is just a way to construct a parameter that returns a whole array at once out of simple parameters, as well as AverageAndRaw, which returns a scalar *and* an array together." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Only array output\n", "The arguments to Measure are all the same actions you use in a Loop.\n", "If they return only arrays, you will see exactly those arrays (with their setpoints) in the output DataSet" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "DataSet:\n", " location = 'data/2020-03-24/#013_{name}_18-45-41'\n", " | | | \n", " Measured | dac2_ChanA_dummy_array_parameter_1 | dummy_array_parameter | (5,)\n", " Measured | dac2_ChanA_dummy_array_parameter_3 | dummy_array_parameter | (5,)\n", "acquired at 2020-03-24 18:45:41\n" ] } ], "source": [ "data = Measure(\n", " Task(dac1.dac1.set, 0),\n", " dac2.A.dummy_array_parameter,\n", " Task(dac1.dac1.set, 2),\n", " dac2.A.dummy_array_parameter,\n", ").run()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.5" }, "toc": { "base_numbering": 1, "nav_menu": {}, "number_sections": true, "sideBar": true, "skip_h1_title": false, "title_cell": "Table of Contents", "title_sidebar": "Contents", "toc_cell": false, "toc_position": {}, "toc_section_display": true, "toc_window_display": false }, "varInspector": { "cols": { "lenName": 16, "lenType": 16, "lenVar": 40 }, "kernels_config": { "python": { "delete_cmd_postfix": "", "delete_cmd_prefix": "del ", "library": "var_list.py", "varRefreshCmd": "print(var_dic_list())" }, "r": { "delete_cmd_postfix": ") ", "delete_cmd_prefix": "rm(", "library": "var_list.r", "varRefreshCmd": "cat(var_dic_list()) " } }, "types_to_exclude": [ "module", "function", "builtin_function_or_method", "instance", "_Feature" ], "window_display": false } }, "nbformat": 4, "nbformat_minor": 1 }